home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GAMES / WIMP / MINES2 / !Mines / h / mouse < prev   
Text File  |  1995-04-30  |  554b  |  25 lines

  1. /* Mausroutinen */
  2.  
  3. #ifndef _mouse
  4. #define _mouse
  5.  
  6. #include "os.h"
  7. #include "osword.h"
  8. #include "wimp.h"
  9.  
  10. typedef struct {
  11.     char c1[8];
  12.     char c2[8];
  13.     char c3[8];
  14. } mouse_color_struct;
  15.  
  16.  
  17. extern void os_mouse2(int *x,int *y,int *b);
  18. extern void set_mouse_color_struct(mouse_color_struct *m,int r1,int g1,int b1,int r2,int g2,int b2,int r3,int g3,int b3);
  19. extern void get_mouse_color(mouse_color_struct *m);
  20. extern void set_mouse_color(mouse_color_struct *m);
  21. extern void set_mouse_box(os_box *box);
  22. extern void set_mouse_box_screen(void);
  23.  
  24. #endif
  25.